home *** CD-ROM | disk | FTP | other *** search
/ Video Toaster 4.3 / Video Toaster v4.3.iso / 3.1 / toasterall / arexx_examples / tpaint / colorvignette.rexx < prev    next >
OS/2 REXX Batch file  |  1993-05-13  |  706b  |  23 lines

  1. /* ColorVignette.rexx -- Fade Pic edges to black&white  */
  2. /* © 1993 NewTek, Inc.    by Arnie Cachelin */
  3.  
  4. if pos('DigiPaint',show(ports))=0 then do
  5.   say "Can't find ToasterPaint!"
  6.   exit
  7. end
  8.  
  9. Address "DigiPaint"     /* Tell ARexx where commands go  */
  10.  
  11. '8rgb' 255 255 255  /* White color */
  12. 'Pmco'        /* Colorize mode */
  13. 'Hvof'          /* Set to radial gradient off */
  14. 'Hvar'          /* Toggle radial gradient blend */
  15. 'Potv' $8000    /* Set hotspot center */
  16. 'Poth' $8000    /* Set hotspot  center */
  17. 'Minc'          /* Set Center transparency to 0% */
  18. 'Maxe'          /* Set Edge transparency to 100% */
  19. 'Whsc'          /* Fill Whole Screen */
  20. 'Shco'          /* Render to composite out */
  21. exit
  22.  
  23.